TArray.BinarySearchUpperBound<T>(T[],T,Integer,IComparer) Method
Searches a sorted array for the given value, using a binary search algorithm returning the index for the last found value using the specified comparer.
public class function BinarySearchUpperBound<T>(const values: array of T; const item: T; out foundIndex: Integer; const comparer: IComparer<T>): Boolean; overload; static;
Type Parameters
- T
Parameters
- values
- Type: array of T
- item
- Type: T
- foundIndex
- Type: Integer
- comparer
- Type: IComparer<T>
Return Value
Type: Boolean